* (bug 20702) Parser functions can now be used correctly in MediaWiki:Missing-article
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Tue, 22 Sep 2009 11:13:41 +0000 (11:13 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Tue, 22 Sep 2009 11:13:41 +0000 (11:13 +0000)
RELEASE-NOTES
includes/Article.php

index 43188b7..14f8c3f 100644 (file)
@@ -529,6 +529,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * (bug 20730) Fix to Special:Version ViewVC link for branch checkouts
 * (bug 20353) wfShellExec() was adding extra quotes on Windows Vista, causing 
   command line scripts to fail
+* (bug 20702) Parser functions can now be used correctly in
+  MediaWiki:Missing-article
 
 == API changes in 1.16 ==
 
index 846061a..67cb5a6 100644 (file)
@@ -443,7 +443,7 @@ class Article {
                # fails we'll have something telling us what we intended.
                $t = $this->mTitle->getPrefixedText();
                $d = $oldid ? wfMsgExt( 'missingarticle-rev', array( 'escape' ), $oldid ) : '';
-               $this->mContent = wfMsg( 'missing-article', $t, $d ) ;
+               $this->mContent = wfMsgNoTrans( 'missing-article', $t, $d ) ;
 
                if( $oldid ) {
                        $revision = Revision::newFromId( $oldid );